home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / tallyho.arc / BRKEVPT.FCP < prev    next >
Text File  |  1990-09-23  |  513b  |  37 lines

  1. @DSPLY "This program calculates"
  2. @DSPLY "the Break-Even Point,"
  3. @DSPLY "which is the amount of"
  4. @DSPLY "sales necessary to"
  5. @DSPLY "equal the fixed and"
  6. @DSPLY "variable costs incurred."
  7. =
  8. @NEW STEP
  9. @GET "Total fixed costs"
  10. @RIN (1)
  11. @GET "Total variable costs"
  12. @RIN (2)
  13. @GET "Normal sales volume"
  14. @RIN (3)
  15. @ROUT (2)
  16. /
  17. @ROUT (3)
  18. =
  19. @NEW STEP
  20. @RIN (4)
  21. 1-
  22. @ROUT (4)
  23. =
  24. @NEW STEP
  25. @RIN (4)
  26. =
  27. @NEW STEP
  28. @ROUT (1)
  29. /
  30. @ROUT (4)
  31. =
  32. @NEW STEP
  33. @DSPLY "Break-even Point is"
  34. =
  35. @NEW STEP
  36. @STOP
  37.